home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00047_Script_CircleVisible < prev    next >
Text File  |  1999-02-25  |  354b  |  20 lines

  1. property whichSprite, 
  2.  
  3. on mouseWithin me
  4.   set the visibility of sprite whichSprite = TRUE
  5. end
  6.  
  7. on mouseLeave me
  8.     set the visibility of sprite whichSprite = FALSE
  9. end
  10.  
  11.  
  12.  
  13. on getPropertyDescriptionList
  14.   set p_list = [¼
  15.             whichSprite: [ #default:0, #format:#integer, #comment:"memberNum of Switch"]] 
  16.   return p_list
  17. end
  18.  
  19.  
  20.